home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / GETCUR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  188 b   |  12 lines

  1. #include <dos.h>
  2.  
  3. void GetCursor( int *Top, int *Bottom )
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x0300;
  8.     int86( 0x10, ®, ® );
  9.     *Bottom = reg.h.ch & 15;
  10.     *Top    = reg.h.cl & 15;
  11. }
  12.